Fix unclosed comments
authorMatthias Clasen <mclasen@redhat.com>
Thu, 3 May 2012 20:11:14 +0000 (16:11 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 3 May 2012 20:11:14 +0000 (16:11 -0400)
gdk/fallback-c89.c

index d766154ec69acd95226c945d3364af51926322f4..35dea777ed39920ccab1c04660ad23a04ab8ab7e 100644 (file)
 #include <float.h>
 
 #ifndef HAVE_ISNAN
-/* it seems of the supported compilers only */
-/* MSVC does not have isnan(), but it does
-/* have _isnan() which does the same as isnan() */
+/* it seems of the supported compilers only
+ * MSVC does not have isnan(), but it does
+ * have _isnan() which does the same as isnan()
+ */
 static inline gboolean
 isnan (double x)
 {
@@ -31,9 +32,10 @@ isnan (double x)
 #endif
 
 #ifndef HAVE_ISINF
-/* Unfortunately MSVC does not have finite() */
-/* but it does have _finite() which is the same */
-/* as finite() except when x is a NaN */
+/* Unfortunately MSVC does not have finite()
+ * but it does have _finite() which is the same
+ * as finite() except when x is a NaN
+ */
 static inline gboolean
 isinf (double x)
 {